home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-07-07 | 609 b | 39 lines | [TEXT/ALFA] |
-
-
- proc smartDQuote {} {
- global smartQuotes
- if {!$smartQuotes} { insertText {"}; return }
- if {[leftQ]} {
- insertText {``}
- } else {
- insertText {''}
- }
- }
- ascii 0x22 <s> smartDQuote TeX
-
- proc smartQuote {} {
- global smartQuotes
- if {!$smartQuotes} { insertText {'}; return }
- if {[leftQ]} {
- insertText {`}
- } else {
- insertText {'}
- }
- }
- ascii 0x27 smartQuote TeX
-
- proc leftQ {} {
- if {[getPos] == 0} {return 1};
- set q [lookAt [expr [getPos]-1]]
- case $q in {
- {\t} {return 1}
- {(} {return 1}
- {\{} {return 1}
- {[} {return 1}
- {<} {return 1}
- {\ } {return 1}
- {\r} {return 1}
- }
- return 0
- }
-